Skip to content
This repository has been archived by the owner on Sep 1, 2020. It is now read-only.

Latest commit

 

History

History
20 lines (15 loc) · 591 Bytes

2.1.33 - Server->heartbeat.md

File metadata and controls

20 lines (15 loc) · 591 Bytes

Server->heartbeat

检测服务器所有连接,并找出已经超过约定时间的连接。如果指定if_close_connection,则自动关闭超时的连接。未指定仅返回连接的fd数组。

需要1.6.10以上版本

函数原型:

array Server::heartbeat(bool $if_close_connection = true);
  • $if_close_connection是否关闭超时的连接,默认为true
  • 调用成功将返回一个连续数组,元素是已关闭的$fd
  • 调用失败返回false

$if_close_connection 在1.7.4+可用

示例:

$closeFdArrary = $serv->heartbeat();